home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-2.iso / Files II / Prog / M / MacOberon 4.0.sit / MacOberon 4.0 / Toolbox Interfaces / MacOSUtils.Mod (.txt) < prev    next >
Encoding:
Oberon Text  |  1993-10-25  |  726 b   |  21 lines  |  [.Ob./.Ob5]

  1. Syntax10.Scn.Fnt
  2. Syntax10b.Scn.Fnt
  3. Syntax10i.Scn.Fnt
  4. ParcElems
  5. Alloc
  6. MODULE MacOSUtils;    (*od 25.10.93*)
  7. (* This Module contains some essential constants, data types and routines from
  8. the NEW Inside Macintosh volume
  9.             Operating System Utilities
  10. Edit.Open DK.MacOberonApp.Text for more information on how to create
  11. standalone Macintosh applications using MacOberon. *)
  12. IMPORT
  13.     SYSTEM, ME:=MacMemory;
  14. (* Gestalt , register-based *)
  15.     PROCEDURE- Gestalt*    0A1H,0ADH;
  16.     PROCEDURE- NewGestalt*    0A3H,0ADH;
  17.     PROCEDURE- ReplaceGestalt*    0A5H,0ADH;
  18. (* Other *)
  19.     PROCEDURE- GetCursor*(cursorID : INTEGER) : ME.Handle    0A9H,0B9H;
  20. END MacOSUtils.
  21.